Carbon


QTSNotificationProcPtr

Header: QuickTimeStreaming.h Carbon status: Supported

typedef ComponentResult(* QTSNotificationProcPtr) (
    ComponentResult inErr, 
    OSType inNotificationType, 
    void *inNotificationParams, 
    void *inRefCon
);

You would declare your function like this if you were to name it MyQTSNotificationCallback:

ComponentResult MyQTSNotificationCallback (
    ComponentResult inErr, 
    OSType inNotificationType, 
    void *inNotificationParams, 
    void *inRefCon
);
inErr
inNotificationType
inNotificationParams
inRefCon

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 5/10/2000)